home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Lycos Clubs 1.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  57 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Instant Messaging\Lycos Clubs"
  5. "NAME"="Proxy Settings"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.01"
  8. "TEXT 1"="Proxy URL"
  9. "TEXT 2"="Proxy Port"
  10. "DESCRIPTION 1"="You can use this plug-in to change the proxy options for Lycos/NeoPlanet Clubs."
  11. "DESCRIPTION 2"="Lycos Clubs may be obtained at http://clubs.lycos.com/live/Directory/welcome.asp and is also included with the full version of NeoPlanet 5.0 at http://www.neoplanet.com/."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  17.  
  18.  
  19. sPath="HKEY_CURRENT_USER\Software\Valent\LycosClubs\Client\Realms\NetClubs\"
  20. sV1="NetworkAddress"
  21. sV2="NetworkPort"
  22.  
  23. Sub Plugin_Initialize 
  24.  if RegPathExists(sPath) then
  25.     s=RegReadValue(sPath & sV1)
  26.     SetUIElement 1,s
  27.  
  28.     s=RegReadValue(sPath & sV2)
  29.     SetUIElement 2,s
  30.  
  31.  else
  32.     Disable
  33.  end if
  34. End Sub
  35.  
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40.  
  41.  
  42. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  43.  s=GetUIElement(1)
  44.  Call RegWriteValue(sPath & sV1,s,1)
  45.  
  46.  s=GetUIElement(2)
  47.  Call RegWriteValue(sPath & sV2,s,1)
  48.  
  49. End Sub
  50.  
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.  
  55.  
  56.  
  57.